home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / grp.h < prev    next >
Text File  |  1992-09-11  |  139b  |  13 lines

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include "sys/types.h"
  6.  
  7. struct group {
  8.   char *gr_name;
  9.   gid_t gr_gid;
  10.   char *gr_passwd;
  11.   char **gr_mem;
  12. };
  13.